Edit the resolution in a request
URL
https://sdpondemand.manageengine.com/api/json/request/REQUEST_ID/resolution
Method
HTTP POST
API description
Edits the resolution to a request in the ServiceDesk Plus On-Demand application
Parameters to be passed
authtoken, scope, OPERATION_NAME (value is EDIT_RESOLUTION), INPUT_DATA
Sample INPUT_DATA:
{
"operation": {
"Details": {
"RESOLUTION": "edited resolution"
}
}
}
}
Sample Request:
curl -d
"scope=sdpodapi&authtoken=244c93bbd236cba1f03ea4af747e2b3a
&OPERATION_NAME=EDIT_RESOLUTION&INPUT_DATA=
{operation:{Details:{RESOLUTION:Edited Resolution Text}}}"
https://sdpondemand.manageengine.com/api/json/request/10/resolution
Sample Response:
{
"operation": {
"name": "EDIT_RESOLUTION",
"result": {
"status": "Success",
"message": "Resolution successfully saved for the request"
}
}
}